What does this error mean: `somefile.c:200: error: the frame size of 1032 bytes is larger than 1024
Posted
by Pierre LaFayette
on Stack Overflow
See other posts from Stack Overflow
or by Pierre LaFayette
Published on 2010-03-15T22:14:14Z
Indexed on
2010/03/15
22:19 UTC
Read the original article
Hit count: 188
During a make, I'm seeing an error along the lines of:
cc1: warnings being treated as errors
somefile.c:200: error: the frame size of 1032 bytes is larger than 1024 bytes
The line number points to the closing brace of a c function that has a signature like this:
void trace(SomeEnum1 p1, SomeEnum2 p2, char* format, ...) {
Anyone know what this type of error means in general?
© Stack Overflow or respective owner